
 /* Floating image container */
    .floating-image {
      position: absolute;
      left: 0;
      width: 100%;
      display: none;
      justify-content: center;
      z-index: 9999;
      background-color: rgba(255, 255, 255, 0.5);
      padding: 20px 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    z-index: 9999;
    }

    .floating-image img {
      height: 90vh;
      width: auto;
      object-fit: contain;

    }

    button {
    font-size: 12px;
    cursor: pointer;
    border: none;
    background-color: #517caa;
    color: white;
    }

